home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 80 / XENIATGM80.iso / Goodies / Blood 2 / Source / data.z / LTGUIOnOffCtrl.h < prev    next >
C/C++ Source or Header  |  1999-04-14  |  2KB  |  46 lines

  1. // LTGUIOnOffCtrl.h: interface for the CLTGUIOnOffCtrl class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_LTGUIONOFFCTRL_H__B4C56631_617A_11D2_BDA7_0060971BDC6D__INCLUDED_)
  6. #define AFX_LTGUIONOFFCTRL_H__B4C56631_617A_11D2_BDA7_0060971BDC6D__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. #include "LTGUIColumnTextCtrl.h"
  13.  
  14. class CLTGUIOnOffCtrl : public CLTGUIColumnTextCtrl  
  15. {
  16. public:
  17.     CLTGUIOnOffCtrl();
  18.     virtual ~CLTGUIOnOffCtrl();
  19.  
  20.     // Create the control
  21.     // pClientDE          - Pointer to the client interface.    
  22.     // hString              - Handle of a string to copy the text from for the control.
  23.     // pFont              - The font to use for rendering the strings.
  24.     // nRightColumnOffset - The number of pixels from the left edge that the on/off text is    
  25.     // pbValue              - Value to store the on/off status in when UpdateData is called
  26.     DBOOL            Create ( CClientDE *pClientDE, HSTRING hString, CLTGUIFont *pFont,
  27.                              int nRightColumnOffset, DBOOL *pbValue=DNULL);
  28.  
  29.     // Update data
  30.     void            UpdateData(DBOOL bSaveAndValidate=DTRUE);
  31.  
  32.     // Sets/gets the on/off status
  33.     DBOOL            IsOn()                { return m_bOn; }
  34.     void            SetOn(DBOOL bOn);
  35.  
  36.     // Left and Right key presses
  37.     void            OnLeft()            { SetOn(!IsOn()); }
  38.     void            OnRight()            { SetOn(!IsOn()); }
  39.  
  40. protected:
  41.     DBOOL            m_bOn;
  42.     DBOOL            *m_pbValue;        // Value to store the on/off status in when UpdateData is called.
  43. };
  44.  
  45. #endif // !defined(AFX_LTGUIONOFFCTRL_H__B4C56631_617A_11D2_BDA7_0060971BDC6D__INCLUDED_)
  46.